/* ========================================
   SMART GYAN TRAINING INSTITUTE
   Brand Colors & Design System
   ======================================== */

:root {
    /* Brand Colors - From Logo */
    --primary-color: #003952; /* Deep Navy Blue */
    --secondary-color: #c9962c; /* Golden Mustard */
    --accent-color: #0077b6; /* Light Blue */

    /* Background Colors */
    --dark-bg: #1a2332; /* Dark Navy */
    --light-bg: #f8f9fa; /* Light Gray */
    --white-bg: #ffffff;

    /* Text Colors */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #005a7a);
    --gradient-secondary: linear-gradient(
        135deg,
        var(--secondary-color),
        #e5ad3d
    );

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 57, 82, 0.1);
    --shadow-md: 0 4px 10px rgba(0, 57, 82, 0.15);
    --shadow-lg: 0 10px 20px rgba(0, 57, 82, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/*header*/

@media (max-width: 767.98px) {
    .top-contact-row {
        flex-wrap: nowrap !important;

        justify-content: space-between !important;

        margin-left: 0 !important;

        margin-right: 0 !important;
    }

    .top-contact-row > div {
        margin-left: 0 !important;

        margin-right: 0 !important;
    }
}

/* Remove horizontal scroll */

html,
body {
    overflow-x: hidden;

    width: 100%;

    margin: 0;

    padding: 0;
}

/* Ensure all images and elements scale properly */

img,
video {
    max-width: 100%;

    height: auto;

    display: block;
}

/* Universal box sizing for layout consistency */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix navbar collapse issues on mobile if using Bootstrap */

.navbar {
    flex-wrap: wrap;
}

body {
    background-color: white;

    font-family: "Segoe UI", sans-serif;

    overflow-x: hidden;
}

.contact-info {
    color: white;

    font-size: 0.9rem;
}

/*nav section*/

.nav-link {
    color: white !important;
}

.nav-link.active {
    background-color: var(--primary-color) !important;
}

.admission-btn {
    background-color: var(--secondary-color) !important;

    color: var(--text-dark) !important;
}

@media (max-width: 767.98px) {
    .nav-adjust {
        margin-left: 0 !important;
    }
}

/*hero slider*/

.logo-text h1 {
    font-weight: bold;
}

.logo-img {
    max-width: 150px;
}

@media (max-width: 767.98px) {
    .logo-img {
        margin-bottom: 15px;
    }
}

/* 📱 Mobile devices */
@media (max-width: 768px) {
    #heroSlider img {
        height: 40vh !important; /* Smaller height for mobiles */
        object-fit: cover;
        object-position: top center;
    }
}

/* 💻 Tablets (iPad, 769px–1050px) */
@media (min-width: 769px) and (max-width: 1050px) {
    #heroSlider img {
        height: 50vh !important; /* Reduced from 70vh → better fit */
        object-fit: cover;
        object-position: center top;
    }
}

/* 🖥️ Desktop */
@media (min-width: 1051px) {
    #heroSlider img {
        height: 70vh !important;
        object-fit: cover;
        object-position: center center;
    }
}

.program-card {
    height: 350px;

    background-size: cover;

    background-position: center;

    position: relative;

    color: white;

    text-align: center;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    padding-bottom: 20px;

    border-radius: 10px;

    overflow: hidden;
}

.program-card::after {
    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgba(0, 0, 0, 0.3);

    z-index: 1;
}

.program-card h5 {
    position: relative;

    z-index: 2;

    font-size: 1.5rem;

    font-weight: bold;

    text-transform: uppercase;

    letter-spacing: 1px;

    background-color: rgba(0, 0, 0, 0.4);

    padding: 8px 16px;

    border-radius: 5px;
}

/* course section*/

.course-img {
    width: 300;

    max-width: 500px;

    height: auto;

    border-radius: 8px;

    height: 400px;
}

.course-icon {
    margin-right: 10px;

    color: #007bff;
}

.course-detail {
    margin-bottom: 20px;

    font-size: 24px;
}

.program-title {
    text-align: center;

    font-size: 24px;

    background-color: white;

    font-weight: bold;

    text-transform: uppercase;
}

.program-title {
    text-align: center;

    font-weight: bold;

    background-color: white;

    text-transform: uppercase;
}

.course-title {
    font-weight: bold;

    font-size: 1.2rem;

    margin-bottom: 10px;
}

.color-see {
    background-color: var(--primary-color);
}

/* Section Titles */

.section-title {
    font-weight: 700;

    text-transform: uppercase;
}

/* Info Cards */

.info-card {
    padding: 2rem;

    width: 300px;

    height: 350px;

    border-radius: 5px;
}

.info-card .icon {
    font-size: 2.5rem;

    margin-bottom: 1rem;

    display: block;
}

.info-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    will-change: transform;
}

.info-box:hover {
    transform: translateY(-10px) scale(1.03);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Card Backgrounds */

.bg-blue {
    background-color: var(--accent-color);
}

.bg-dark-blue {
    background-color: var(--primary-color);
}

/* Dual Panel Section */

.dual-panel-section .left-panel {
    background-color: #003b61;

    height: 430px;

    width: 58rem;

    z-index: -11;

    position: relative;

    top: -437px;
}

.dual-panel-section .right-panel {
    background-image: linear-gradient(
            rgba(0, 165, 255, 0.6),
            rgba(0, 165, 255, 0.6)
        ),
        url("/image/air4.jpg");

    background-size: cover;

    background-position: center;
}

.left-panel {
    background-color: #003b61;
}

.right-panel {
    background-image: linear-gradient(
            rgba(0, 165, 255, 0.6),
            rgba(0, 165, 255, 0.6)
        ),
        url("/image/air4.jpg");

    background-size: cover;

    display: flex;

    position: relative !important;

    right: -51%;

    top: -152px;

    height: 529px;

    width: 40rem;

    z-index: -10;
}

/*industry



.air-hostess-industry p{



  font-size: 17px;



}







.bg-blue {



  background-color: #00aaff;



}







.bg-dark-blue {



  background-color: #003b61;



}







.info-box h5 {



  font-size: 1.1rem;



}







.info-box p {



  font-size: 0.95rem;



  text-align: justify;



}







.info-box {



  width:365px;



  height:320px;



}*/

.skill-work {
    font-size: 17px;
}

.bg-card {
    height: 300px;

    background-size: cover;

    background-position: center;

    padding: 20px;

    border-radius: 8px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bg-card h5 {
    font-weight: bold;
}

.bg-card a {
    width: 180px;

    margin-left: 45px;
}

/*footer+form*/

.form-box1 {
    background-color: rgba(255, 255, 255, 0.9);

    padding: 20px;

    border-radius: 10px;
}

.form-box1 input {
    height: 37px;
}

.image-box img {
    width: 100%;

    border-radius: 10px;

    height: 340px;
}

/*================= review card hovar=================== */

.review-card-wrapper {
    perspective: 1000px;

    width: 100%;

    height: 100%;
}

.review-card {
    position: relative;

    width: 100%;

    height: 100%;

    transition: transform 0.6s;

    transform-style: preserve-3d;

    min-height: 335px;
}

.review-card-wrapper:hover .review-card {
    transform: rotateY(180deg);
}

.review-card-front,
.review-card-back {
    position: absolute;

    width: 100%;

    height: 100%;

    backface-visibility: hidden;

    padding: 1rem;

    border-radius: 0.5rem;

    display: flex;

    flex-direction: column;

    box-sizing: border-box;

    overflow: hidden;
}

.review-card-back {
    background-color: #fe7e13;

    transform: rotateY(180deg);
}

@media (max-width: 576px) {
    .review-card {
        transform: none !important;
    }

    .review-card-wrapper:hover .review-card {
        transform: none !important;
    }

    .review-card-front,
    .review-card-back {
        position: relative;

        transform: none !important;

        backface-visibility: visible;
    }

    .review-card-back {
        display: none;
    }
}

/*------------------- end section--------------------------- */

.panel-inner-right {
    width: 300px;

    position: absolute;

    bottom: 0;
}

/*admission page*/

.career-section {
    background: url("/image/air4.jpg") no-repeat center center / cover;

    height: 500px;

    display: flex;

    align-items: center;
}

.form-box {
    background-color: black;

    color: white;

    border-radius: 20px;

    padding: 2rem;

    max-width: 500px;

    height: 370px;

    width: 100%;
}

.form-box input,
.form-box select {
    background-color: white;

    color: #0d3c85;

    border: none;

    border-radius: 10px;

    padding: 10px;

    font-size: 14px;
}

.form-box input::placeholder {
    color: #0d3c85;
}

.form-box .btn {
    background-color: white;

    color: #0d3c85;

    font-weight: bold;

    border-radius: 10px;

    padding: 8px 20px;
}

.form-box .btn:hover {
    background-color: #f0f0f0;
}

@media (max-width: 767px) {
    .career-section {
        background-position: center;

        padding: 2rem 1rem;
    }

    .form-box {
        margin: auto;
    }
}

.admission-banner {
    height: 550px;

    overflow: hidden;
}

@media (max-width: 768px) {
    .admission-banner {
        height: 190px;
    }
}

/*online-exam-register*/

.form-side {
    background: linear-gradient(to bottom, #0a0f3c, #121d54);
}

.form-control {
    background-color: transparent;

    border: 1px solid #6c757d;

    border-radius: 30px;

    padding: 12px 20px;

    color: white;
}

.form-control::placeholder {
    color: #adb5bd;
}

.btn-primary {
    border-radius: 30px;

    background-color: #3ea6ff;

    border: none;

    padding: 10px 30px;

    font-weight: 500;
}

.btn-primary:hover {
    background-color: #1a8cff;
}

.login-link a {
    color: #3ea6ff;

    text-decoration: none;

    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Animation for mobile view only   



*/

.about-content p {
    font-size: 18px;

    line-height: 1.8;
}

.place-content p,
.place-content li {
    font-size: 18px;

    line-height: 1.8;
}

/* Keep toggle button left on mobile */

@media (max-width: 991.98px) {
    .navbar-toggler {
        margin-left: 0 !important;

        margin-right: auto !important;
    }

    .navbar-collapse {
        text-align: left;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }
}

/* Keep toggle button left on mobile */

@media (max-width: 991.98px) {
    .navbar-toggler {
        margin-left: 0 !important;

        margin-right: auto !important;
    }

    .navbar-collapse {
        text-align: left;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }
}

/* On large screens, center menu items */

@media (min-width: 990px) and (max-width: 1400px) {
    .nav-adjust {
        gap: 0.75rem;
        flex-wrap: wrap;
        /* ✅ allow wrapping */
        overflow-x: visible;
        /* ✅ no scroll */
        justify-content: center;
    }

    .nav-adjust .nav-item {
        white-space: nowrap;
    }
}

/*desktop view gaping*/

@media (min-width: 1200px) {
    .nav-adjust {
        display: flex;

        flex-direction: row;

        gap: 1.5rem;

        justify-content: center;
    }
}

@media (min-width: 765px) and (max-width: 1299.98px) {
    .logo-img {
        height: 60px !important;
    }
}

/*placement animation in image*/

.partner-logo {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover,
.partner-logo:active {
    transform: scale(1.1);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/*Contact Us*/

.contact-header {
    height: 50vh;

    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("/image/craft.jpg") center center/cover no-repeat;
}

.info-card1 {
    background-color: #fff;

    border: 1px solid #eee;

    transition: transform 0.3s ease;
}

.info-card1 {
    word-wrap: break-word;

    overflow-wrap: break-word;

    white-space: normal;
}

.info-card1:hover {
    transform: translateY(-5px);
}

@media (max-width: 576px) {
    .get-in-touch-section h2 {
        font-size: 1.75rem;
    }

    .get-in-touch-section .form-label {
        font-size: 0.95rem;
    }
}

/* Default for Desktop */

.custom-img {
    height: 350px;

    object-fit: cover;
}

/* iPad (768px – 1024px) */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .custom-img {
        height: 400px;
    }

    .air-hostess-industry h3 {
        font-size: 1.2rem;
    }

    .air-hostess-industry p {
        font-size: 0.9rem;
    }

    .info-box {
        padding: 1.5rem !important;
    }
}

/* Surface Pro 7 or similar width (1025px – 1366px) */

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .custom-img {
        height: 370px;
    }

    .air-hostess-industry h3 {
        font-size: 1.3rem;
    }

    .air-hostess-industry p {
        font-size: 1rem;
    }

    .info-box {
        padding: 2rem !important;
    }
}

/*about us*/

.hero-banner {
    background-image: url("/image/airline3.jpg");

    background-size: cover;

    background-position: center;

    height: 40vh;

    position: relative;

    z-index: 1;
}

.hero-banner::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    z-index: -1;
}

.hero-banner .container {
    z-index: 2;

    position: relative;
}

.hashtag {
    font-size: 1.2rem;

    color: #ffffff;

    margin-bottom: 1rem;
}

.stats-section {
    background-color: #002bb8;

    padding: 50px 0;
}

.stat-box {
    background-color: #f9d902;

    margin: 15px;

    padding: 30px 20px;

    border: 1px solid #fff;

    border-radius: 5px;

    min-height: 200px;
}

.stat-icon {
    width: 50px;

    height: 50px;

    margin-bottom: 10px;
}

.counter {
    font-size: 2rem;

    font-weight: bold;

    color: #000;
}

.stat-box p {
    margin: 0;

    font-size: 1rem;

    font-weight: 500;

    color: #000;
}

/*best aviiation animation hovar css */

.gallery-wrapper1 .image-box {
    position: relative;

    overflow: hidden;

    border-radius: 12px;
}

.gallery-wrapper1 .gallery-image {
    width: 100%;

    height: 250px;

    object-fit: cover;

    display: block;

    transition: transform 0.3s ease;
}

.gallery-wrapper1 .overlay {
    position: absolute;

    top: -100%;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 123, 255, 0.6);

    transition: top 0.5s ease;

    z-index: 2;
}

/* Hover & Mobile Tap Support */

.gallery-wrapper1 .image-box:hover .gallery-image,
.gallery-wrapper1 .image-box:active .gallery-image {
    transform: scale(1.05);
}

.gallery-wrapper1 .image-box:hover .overlay,
.gallery-wrapper1 .image-box:active .overlay {
    top: 0;
}

/*placement css*/

.placement-section {
    background: url("/image/wp1.webp") no-repeat center center / cover;

    position: relative;

    color: #fff;

    font-size: 18px;
}

.placement-overlay {
    padding: 60px 30px;

    border-radius: 8px;
}

.placement-section h2,
.placement-section h5,
.placement-section p,
.placement-section li {
    color: #0f0e0e;
}

.placement-section h2 {
    font-size: 32px;
}

.placement-section h5 {
    font-size: 22px;

    margin-top: 30px;
}

.placement-section ul {
    list-style: disc;

    padding-left: 20px;
}

.placement-section ul li {
    margin-bottom: 10px;
}

.placement-section .checkmark::before {
    content: "✔";

    margin-right: 8px;

    color: #00ffb3;
}

@keyframes fadeInUp {
    from {
        opacity: 0;

        transform: translateY(30px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeInUp 1.2s ease forwards;
}

.partner-gallery .partner-card {
    position: relative;

    overflow: hidden;

    border-radius: 12px;

    height: 160px;

    background: #fff;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    flex-direction: column;
}

/* Logo Image Styling */

.partner-gallery .partner-image {
    max-height: 70px;

    object-fit: contain;

    margin-bottom: 0;

    transition: transform 0.3s ease;
}

/* Scale on Hover */

.partner-gallery .partner-card:hover .partner-image {
    transform: scale(1.05);
}

/* Overlay Styles */

.partner-gallery .overlay {
    position: absolute;

    top: -100%;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 123, 255, 0.6);

    transition: top 0.5s ease;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;
}

/* Show Overlay on Hover */

.partner-gallery .partner-card:hover .overlay {
    top: 0;
}

.custom-hover-card {
    background-color: #ffffff;

    color: #212529;

    transition: all 0.3s ease;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-hover-card:hover {
    background: linear-gradient(to right, #003973, #e5e5be);

    color: #fff;

    transform: translateY(-5px);

    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.custom-hover-card:hover h5,
.custom-hover-card:hover p,
.custom-hover-card:hover .fs-1 {
    color: #fff !important;
}

.franchise-section {
    position: relative;

    overflow: hidden;
}

.franchise-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: url("/image/franchise.jpg") center/cover no-repeat;

    filter: blur(10px);

    transform: scale(1.1);
    z-index: -1;
}

.overlay {
    position: center;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    backdrop-filter: blur(10px);

    background: rgba(85, 84, 84, 0.24);

    z-index: 1;
}

/* Content above overlay */

.container.position-relative {
    z-index: 2;
}

/* Facility Image */

.facility-img {
    height: 300px;

    object-fit: cover;

    border-radius: 15px;
}

.facility-img:hover {
    transform: scale(1.05);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Facility Icons */

.facility-icon {
    height: 35px;

    width: 35px;
}

.stylish-img {
    height: 400px;

    /* object-fit: cover; */

    border-radius: 15px;
}

.stylish-img:hover {
    transform: scale(1.05);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.custom-btn {
    background: linear-gradient(45deg, #007bff, #00c6ff);

    border: none;

    padding: 10px 25px;

    font-size: 20px;

    font-weight: 500;

    border-radius: 30px;

    transition: all 0.3s ease-in-out;

    color: #fff;
}

.custom-btn:hover {
    background: linear-gradient(45deg, #0056b3, #0099cc);

    transform: scale(1.08);

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);

    color: #fff;
}

.icon-circle {
    width: 80px;

    height: 80px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;
}

section.course-details {
    padding: 60px 0;

    background: #fff;
}

.section-title {
    font-weight: bold;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.highlight-box {
    background: blue;

    color: #fff;

    padding: 3px 8px;

    border-radius: 2px;

    margin-right: 5px;
}

.underline {
    position: relative;

    display: inline-block;

    margin: 10px 0 20px;
}

.underline::before,
.underline::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 40px;

    height: 2px;

    background: #002d72;
}

.underline::before {
    right: 100%;

    margin-right: 10px;
}

.underline::after {
    left: 100%;

    margin-left: 10px;
}

.underline span {
    display: inline-block;

    width: 10px;

    height: 10px;

    background: #002d72;

    border-radius: 50%;
}

.course-text {
    max-width: 900px;

    margin: auto;

    font-size: 17px;

    line-height: 1.7;

    color: #222;

    text-align: justify-content-center;
}

.icon-circle1 {
    width: 80px;

    height: 80px;

    border-radius: 50%;
}

<!--course-- > .course-card {
    background: #fff;

    transition: all 0.3s ease-in-out;

    border-left: 1px solid #e0e0e0;

    border-right: 1px solid #e0e0e0;

    border-top: 10px solid #1a237e;

    border-bottom: 10px solid #1a237e;
}

.course-card:hover {
    transform: translateY(-8px);

    box-shadow: 0px 8px 20px rgba(26, 35, 126, 0.2);

    background: #f5f6ff;

    border-left-color: #1a237e;

    border-right-color: #1a237e;
}

.course-card h5 {
    color: #1a237e;
}

.course-card ul li {
    padding: 4px 0;

    font-size: 14px;

    color: #444;
}

.icon-box {
    font-size: 36px;

    color: #fff;

    background: #1a237e;

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    margin: 0 auto 15px auto;

    transition: all 0.3s ease-in-out;
}

.course-card:hover .icon-box {
    background: #3949ab;
    transform: scale(1.1);
}

/* Center icons for wide cards */

.col-md-6 .icon-box {
    margin: 0 0 15px 0;
}

/* Center icons for wide cards */

.col-md-6 .icon-box {
    margin: 0 0 15px 0;
}

<!--admission form-- > .form-control,
.form-select {
    background-color: transparent !important;

    border: 1px solid #333 !important;

    color: #000 !important;
}

.form-control::placeholder {
    color: #333 !important;

    opacity: 1;
}

.form-control:focus,
.form-select:focus {
    border-color: #1a237e !important;

    box-shadow: none !important;

    background-color: rgba(255, 255, 255, 0.2) !important;

    color: #000 !important;
}

/* File input text color fix */

input[type="file"]::file-selector-button {
    background: #1a237e;

    color: #fff;

    border: none;

    padding: 3px 10px;

    font-size: 12px;

    border-radius: 4px;

    cursor: pointer;
}

<!-- Carousel CSS -- > .logo-carousel {
    overflow: hidden;

    position: relative;

    width: 100%;
}

.logo-track {
    display: flex;

    width: calc(250px * 36);

    animation: scroll 40s linear infinite;
}

.logo-item {
    flex: 0 0 250px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 15px;
}

.logo-item img {
    max-width: 180px;

    max-height: 80px;

    object-fit: contain;

    transition: filter 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Accordion Button Base */

.accordion-button {
    background-color: #003b61;

    color: #fff;

    font-weight: 500;

    transition: all 0.3s ease;
}

/* Hover Effect */

.accordion-button:hover {
    background-color: #3949ab;

    color: #fff;
}

/* Active/Open State */

.accordion-button:not(.collapsed) {
    background-color: #303f9f;

    color: #fff;

    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Accordion Body */

.accordion-body {
    background-color: #f9f9ff;

    border-left: 4px solid #1a237e;
}

/* <--media coverage-- >  */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    background-color: #e8eaf6;

    transform: translateY(-5px);

    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.2);
}

<!-- Custom Hover Effect -- > .hover-blog {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-blog:hover {
    transform: translateY(-8px);

    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.2);
}

.hover-blog {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-blog:hover {
    transform: translateY(-8px);

    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.2);
}

/*facilities*/

.hover-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-box:hover {
    transform: translateY(-8px);
}

<!-- Placeholder CSS Fix -- > input::placeholder,
textarea::placeholder {
    color: #6c757d !important;

    opacity: 1;

    font-size: 13px;
}

.hover-blog img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    will-change: transform;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.03);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
